fmax
From cppreference.com
| Defined in header <math.h>
|
||
| float fmaxf( float x, float y ); |
(since C99) | |
| double fmax( double x, double y ); |
(since C99) | |
| long double fmaxl( long double x, long double y ); |
(since C99) | |
Returns the larger of two floating point arguments.
If one of the arguments is NaN, this function returns the other argument. If both arguments are NaNs, the function returns NaN.
Contents |
[edit] Parameters
| x, y | - | floating point values |
[edit] Return value
The larger of two floating point values.
[edit] Example
Run this code
Possible output:
fmax(2.0,1.0) = 2.0 fmax(NAN,1.0) = 1.0
[edit] See also
| (C99) |
smaller of two floating point values (function) |
| C++ documentation for fmax
| |